home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / modconverter.bas < prev    next >
Encoding:
BASIC Source File  |  2001-10-16  |  934 b   |  26 lines

  1. Attribute VB_Name = "modConvert"
  2. '******************************************************************'
  3. '*                                                                *'
  4. '*                      TurboCAD for Windows                      *'
  5. '*                   Copyright (c) 1993 - 2001                    *'
  6. '*             International Microcomputer Software, Inc.         *'
  7. '*                            (IMSI)                              *'
  8. '*                      All rights reserved.                      *'
  9. '*                                                                *'
  10. '******************************************************************'
  11.  
  12. Option Explicit
  13.  
  14. Global objApp As Object
  15. Global Drs As Object
  16. Global Dr As Object
  17. Global Ftrs As Filters
  18. Global CurCombo As Boolean
  19. Global CurImportFilter As String
  20. Global CurExportFilter As String
  21.  
  22. Private Sub Form_Load()
  23.     frmConvert.Show 1
  24. End Sub
  25.  
  26.